Watch (-) Star (-)

欢迎大家使用 CodeIgniter ApiDoc 文件注释文档自动生成插件!

文件注释说明文档

文件注释规则:


/**
 * @author ym
 * @group(name="docgroup", description="文档模块")
 */
class Doc extends CI_Controller {

    function __construct() {
        parent::__construct();
        $this->load->library('phpdoc/apidoc');
    }

    /**
     * @ApiDescription(section="User", method="get", description="Get information about user")
     * @ApiNotice(description="登录后,客户端要保存服务器种下的cookie来维护session")
     * @ApiSuccess(value="{'firstname' : 'ym', 'lastname'  : '1623', 'lastLogin' : '2014-04-21'}")
     * @ApiExample(value="{'username' : 'ym', 'password'  : '123456'}")
     * @ApiAccess(login="true")
     * @ApiParams(name="id", type="integer", is_selected=true, description="User id")
     * @ApiParams(name="sort", type="enum[asc,desc]", description="User data")
     * @ApiReturn(name="id", type="integer", description="User id")
     * @ApiReturn(name="sort", type="enum[asc,desc]", description="sort data")
     * @ApiReturn(name="page", type="integer", description="data of page")
     * @ApiReturn(name="count", type="integer", description="data of page")
     */
    function build(){
        $this->apidoc->build_doc();
    }

}

如上面的代码所示:

class注释规则:

  1. class上方必须注释group, 代表该文件所属群组

方法注释规则:

  • ApiDescription必填
    • section生成该方法的文档标题
    • method方法的请求类型如:get/post
    • description文档首页中群组下的方法描述
  • ApiNotice可选 [注意事项])
    • descriptionstring
  • ApiSuccess可选 [返回结果])
    • valueobject
  • ApiExample可选 [请求示例])
    • valueobject
  • ApiAccess可选 [是否需要登录,默认false])
    • loginbool
  • ApiParams可选 [请求参数])
    • name参数名称
    • type参数类型
    • is_selected是否必填
    • description参数描述
  • ApiReturn可选 [返回字段说明])
    • name参数名称
    • type参数类型
    • description参数描述